/* Global Styles */
:root {
    --primary-dark: #121212;
    --secondary-dark: #1e1e1e;
    --accent-yellow: #edbd3b;
    --accent-yellow-light: rgba(237, 189, 59, 0.1);
    --text-light: #f5f5f5;
    --text-gray: #b3b3b3;
    --card-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    --transition-fast: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-medium: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--primary-dark);
    color: var(--text-light);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

main {
    padding: 80px 0px;
    min-height: calc(100vh - 80px);
    /* Adjust for footer height */
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

h1,
h2,
h3 {
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--accent-yellow);
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

h1::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 80px;
    height: 4px;
    background-color: var(--accent-yellow);
    border-radius: 2px;
}

h2 {
    font-size: 1.8rem;
    margin-top: 60px;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 60px;
    height: 3px;
    background-color: var(--accent-yellow);
    border-radius: 2px;
}

p {
    margin-bottom: 20px;
    color: var(--text-gray);
    font-size: 1.05rem;
    max-width: 800px;
    line-height: 1.8;
}

.section-intro {
    max-width: 800px;
    margin-bottom: 50px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    background-color: var(--accent-yellow);
    color: var(--primary-dark);
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: 0 4px 10px rgba(237, 189, 59, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(237, 189, 59, 0.4);
}

.btn:active {
    transform: translateY(-1px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--accent-yellow);
    color: var(--accent-yellow);
    box-shadow: none;
}

.btn-outline:hover {
    background-color: var(--accent-yellow);
    color: var(--primary-dark);
    box-shadow: 0 8px 15px rgba(237, 189, 59, 0.4);
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* Header and Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(18, 18, 18, 0.95);
    z-index: 1000;
    border-bottom: 1px solid rgba(237, 189, 59, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition-fast);
}

header.scrolled {
    padding: 5px 0;
    background-color: rgba(18, 18, 18, 0.98);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--accent-yellow);
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: var(--transition-fast);
}

.logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
    padding: 5px 0;
    font-size: 16px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-yellow);
    transition: var(--transition-fast);
    border-radius: 2px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-yellow);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--accent-yellow);
    transition: var(--transition-fast);
    border-radius: 2px;
}

/* Updated Hero Section Styles */
#home-section {
    background-color: var(--primary-dark);
    text-align: center;
    padding-top: 120px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
    background-image: url('../imgs/bg2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#home-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 18, 18, 0.85);
    /* Dark overlay with 85% opacity */
    opacity: 0.5
        /*    z-index: 1;*/
}

.hero-bg {
    display: none;
    /* Hide the original hero-bg div */
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    /* Ensure content is above the overlay */
    padding: 60px 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 30px;
    text-align: center;
    display: block;
    color: var(--accent-yellow);
}

.hero-content h1::after {
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: var(--text-light);
    /* Make text lighter against dark background */
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    #home-section {
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    #home-section {
        padding-top: 80px;
        padding-bottom: 50px;
    }

    .hero-content {
        padding: 40px 15px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}

/* Featured Services */
#featured-services {
    /* padding: 80px 0; */
    text-align: center;
}

#featured-services h2 {
    display: block;
    text-align: center;
}

#featured-services h2::after {
    left: 50%;
    transform: translateX(-50%);
}

#featured-services .section-intro {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Services and Card Styles */
.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 60px;
}

.service-card {
    background-color: var(--secondary-dark);
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: var(--card-shadow);
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-yellow), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-medium);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border-color: rgba(237, 189, 59, 0.2);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--accent-yellow);
    margin-bottom: 20px;
    width: 60px;
    height: 60px;
    background-color: var(--accent-yellow-light);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition-fast);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    background-color: rgba(237, 189, 59, 0.2);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    transition: var(--transition-fast);
}

.service-card p {
    font-size: 1rem;
    color: var(--text-gray);
    flex-grow: 1;
    margin-bottom: 20px;
}

.service-card .btn {
    align-self: flex-start;
}

/* Why Choose Us Section */
#why-choose-us {
    margin-top: 80px;
    padding: 10px 0 60px 0;
    background-color: rgba(30, 30, 30, 0.5);
    border-radius: 15px;
    box-shadow: var(--card-shadow);
    text-align: center;
}

#why-choose-us h2 {
    text-align: center;
    margin-bottom: 40px;
    display: block;
}

#why-choose-us h2::after {
    left: 50%;
    transform: translateX(-50%);
}

#why-choose-us>p {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--secondary-dark);
    border-radius: 15px;
    transition: var(--transition-medium);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(237, 189, 59, 0.2);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: var(--accent-yellow-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition-medium);
}

.feature-icon i {
    font-size: 2rem;
    color: var(--accent-yellow);
}

.feature-item:hover .feature-icon {
    background-color: rgba(237, 189, 59, 0.2);
    transform: scale(1.1);
}

.feature-item h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.feature-item p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    margin-top: 80px;
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, rgba(40, 40, 40, 0.8), rgba(20, 20, 20, 0.8));
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(237, 189, 59, 0.2), transparent 50%);
    z-index: 0;
}

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    text-align: center;
    display: block;
}

.cta-section h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.cta-section p {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.cta-section .btn {
    position: relative;
    z-index: 1;
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* About Page */
.about-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background: radial-gradient(circle at 10% 30%, rgba(237, 189, 59, 0.5), transparent 40%);
    z-index: 1;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    /* align-items: center; */
    gap: 60px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.about-image {
    width: 30%;
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--accent-yellow);
    z-index: -1;
    border-radius: 15px;
    opacity: 0.6;
    transition: var(--transition-medium);
}

.about-image:hover::before {
    top: -20px;
    left: -20px;
    opacity: 0.8;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--card-shadow);
    transition: var(--transition-medium);
    max-height: 400px;
    object-fit: cover;
}

.about-image:hover img {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.team-section {
    position: relative;
    z-index: 2;
    margin-top: 100px;
}

.team-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.team-member {
    text-align: center;
    transition: var(--transition-medium);
    padding: 30px 20px;
    border-radius: 15px;
    background-color: var(--secondary-dark);
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.team-member:hover {
    transform: translateY(-10px);
    background-color: rgba(30, 30, 30, 0.8);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border-color: rgba(237, 189, 59, 0.2);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid var(--accent-yellow);
    transition: var(--transition-medium);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.team-member:hover img {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(237, 189, 59, 0.3);
}

.team-member h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.team-member p {
    font-size: 1rem;
    color: var(--text-gray);
}

.team-member .social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.team-member .social-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: var(--accent-yellow-light);
    color: var(--accent-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    font-size: 0.9rem;
}

.team-member .social-icon:hover {
    background-color: var(--accent-yellow);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-item {
    background-color: var(--secondary-dark);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition-fast);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(237, 189, 59, 0.2);
}

.value-icon {
    width: 70px;
    height: 70px;
    background-color: var(--accent-yellow-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition-medium);
}

.value-icon i {
    font-size: 2rem;
    color: var(--accent-yellow);
}

.value-item:hover .value-icon {
    background-color: rgba(237, 189, 59, 0.2);
    transform: scale(1.1);
}

/* Contact Page */
.contact-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background: radial-gradient(circle at 80% 80%, rgba(237, 189, 59, 0.5), transparent 40%);
    z-index: 1;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    transition: var(--transition-medium);
    padding: 20px;
    border-radius: 10px;
    background-color: rgba(30, 30, 30, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-info-item:hover {
    transform: translateX(5px);
    background-color: var(--secondary-dark);
    border-color: rgba(237, 189, 59, 0.2);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background-color: var(--accent-yellow-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.contact-info-item:hover .contact-icon {
    background-color: rgba(237, 189, 59, 0.2);
    transform: scale(1.1);
}

.contact-icon i {
    color: var(--accent-yellow);
    font-size: 1.5rem;
}

.contact-info-text h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.contact-info-text p {
    margin-bottom: 0;
    font-size: 1rem;
}

.contact-form {
    flex: 1;
    min-width: 300px;
    background-color: var(--secondary-dark);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--card-shadow);
    transition: var(--transition-medium);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-form:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(237, 189, 59, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--text-light);
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background-color: rgba(46, 46, 46, 0.8);
    border: 1px solid #3a3a3a;
    border-radius: 8px;
    color: var(--text-light);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-yellow);
    background-color: #2e2e2e;
    box-shadow: 0 0 0 3px rgba(237, 189, 59, 0.2);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.map-section {
    margin-top: 80px;
    z-index: 2;
    position: relative;
}

/* Service Detail Pages */
.service-detail-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.service-detail-header .back-link {
    color: var(--text-gray);
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: var(--transition-fast);
}

.service-detail-header .back-link i {
    margin-right: 5px;
}

.service-detail-header .back-link:hover {
    color: var(--accent-yellow);
    transform: translateX(-5px);
}

.section-content {
    position: relative;
    z-index: 2;
}

.section-content ul {
    color: var(--text-gray);
    margin-bottom: 30px;
    padding-left: 20px;
}

.section-content ul li {
    margin-bottom: 10px;
    position: relative;
}

.section-content ul li::before {
    content: '•';
    color: var(--accent-yellow);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

/* Footer */
footer {
    background-color: var(--secondary-dark);
    text-align: center;
    padding: 50px 20px;
    border-top: 1px solid rgba(237, 189, 59, 0.1);
    margin-top: auto;
    position: relative;
    padding-bottom: 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.social-links {
    margin-bottom: 30px;
}

.social-links a {
    display: inline-block;
    margin: 0 10px;
    width: 45px;
    height: 45px;
    background-color: var(--primary-dark);
    border-radius: 50%;
    color: var(--accent-yellow);
    font-size: 1.2rem;
    line-height: 45px;
    transition: var(--transition-fast);
    text-decoration: none;
    border: 1px solid rgba(237, 189, 59, 0.2);
}

.social-links a:hover {
    background-color: var(--accent-yellow);
    color: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(237, 189, 59, 0.3);
}

.footer-text {
    color: var(--text-gray);
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-yellow);
}

.copyright {
    color: var(--text-gray);
    font-size: 0.9rem;
    opacity: 0.8;
    max-width: 100%;
}

/* Media Queries */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        left: -100%;
        top: 71px;
        flex-direction: column;
        background-color: rgba(18, 18, 18, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        padding: 30px 0;
        backdrop-filter: blur(10px);
        z-index: 999;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 20px 0;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    main {
        padding: 80px 15px 50px;
    }

    h1 {
        font-size: 2.2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .services-container {
        grid-template-columns: 1fr;
    }

    .about-content {
        gap: 40px;
    }

    .team-members {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }

    .contact-info-item {
        padding: 15px;
    }

    .contact-form {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .about-image::before {
        display: none;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
    }

    .contact-info-item {
        margin-bottom: 20px;
    }
}

/* Newsletter Section */
.newsletter-section {
    margin-top: 80px;
    z-index: 2;
    position: relative;
}

.newsletter-input-container {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-radius: 50px;
    overflow: hidden;
    transition: var(--transition-fast);
    border: 1px solid rgba(237, 189, 59, 0.1);
}

.newsletter-input-container:focus-within {
    box-shadow: 0 10px 25px rgba(237, 189, 59, 0.3);
    border-color: var(--accent-yellow);
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 15px 25px;
    border: none;
    background-color: rgba(46, 46, 46, 0.8);
    color: var(--text-light);
    font-size: 1rem;
    outline: none;
    border-radius: 50px 0 0 50px;
    transition: var(--transition-fast);
}

.newsletter-form input[type="email"]:focus {
    background-color: #2e2e2e;
}

.newsletter-form input[type="email"]::placeholder {
    color: var(--text-gray);
    opacity: 0.8;
}

.newsletter-form .btn {
    border-radius: 0 50px 50px 0;
    margin: 0;
    padding: 15px 30px;
}

.newsletter-info {
    display: block;
    color: var(--text-gray);
    margin-top: 10px;
    font-size: 0.85rem;
    opacity: 0.7;
    text-align: center;
}

@media (max-width: 480px) {
    .newsletter-input-container {
        flex-direction: column;
        border-radius: 15px;
    }

    .newsletter-form input[type="email"] {
        border-radius: 15px 15px 0 0;
        padding: 15px;
        text-align: center;
    }

    .newsletter-form .btn {
        border-radius: 0 0 15px 15px;
        width: 100%;
    }
}

/* FAQ Section Styles */
.faq-section {
    margin-top: 80px;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    display: block;
}

.faq-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent-yellow);
    border-radius: 2px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--secondary-dark);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-medium);
}

.faq-item:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(237, 189, 59, 0.2);
    transform: translateY(-3px);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    text-align: left;
    padding: 20px 30px;
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
    position: relative;
    outline: none;
}

.faq-question::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background: linear-gradient(to bottom, var(--accent-yellow), transparent);
    opacity: 0;
    transition: var(--transition-fast);
}

.faq-question:hover::before,
.faq-question[aria-expanded="true"]::before {
    opacity: 1;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--text-light);
    transition: var(--transition-fast);
}

.faq-question:hover h3,
.faq-question[aria-expanded="true"] h3 {
    color: var(--accent-yellow);
}

.faq-icon {
    position: relative;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.faq-icon i {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-yellow);
    transition: var(--transition-fast);
}

.faq-icon .fa-plus {
    opacity: 1;
    transform: rotate(0);
}

.faq-icon .fa-minus {
    opacity: 0;
    transform: rotate(-90deg);
}

.faq-question[aria-expanded="true"] .fa-plus {
    opacity: 0;
    transform: rotate(90deg);
}

.faq-question[aria-expanded="true"] .fa-minus {
    opacity: 1;
    transform: rotate(0);
}

/* The display property is now controlled directly via JavaScript */
.faq-answer {
    transition: opacity 0.3s ease;
    padding-top: 20px;
}

.faq-answer p {
    padding: 0 30px 20px;
    margin: 0;
    color: var(--text-gray);
}

.faq-answer a {
    color: var(--accent-yellow);
    text-decoration: none;
    transition: var(--transition-fast);
    position: relative;
}

.faq-answer a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--accent-yellow);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.faq-answer a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.faq-item {
    position: relative;
}

.faq-item.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background: linear-gradient(to bottom, var(--accent-yellow), transparent);
    opacity: 1;
    transition: var(--transition-fast);
}

/* Focus styles for accessibility */
.faq-question:focus {
    box-shadow: 0 0 0 3px rgba(237, 189, 59, 0.3);
}

/* Additional animation for the answer when it appears */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-item.active .faq-answer {
    animation: fadeIn 0.5s ease forwards;
}


/* ====== */

#why-choose-us .container>p {
    margin-left: auto;
    margin-right: auto;
}

#why-choose-us .feature-item {
    position: relative;
}

#why-choose-us .feature-item::after {
    position: absolute;
    content: '';
    background: url('../imgs/bg3.png');
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.5s ease-in-out;
    border-radius: 15px;
    background-repeat: no-repeat;
}

#why-choose-us .feature-item:hover::after {
    opacity: 1;
}

#why-choose-us .feature-item>* {
    position: relative;
    z-index: 1;
}

#featured-services .service-card {
    text-align: left;
}

.section-bg {
    background-color: var(--primary-dark);
    /* text-align: center; */
    padding-top: 120px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
    background-image: url('../imgs/bg2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
}

.section-bg .section-intro {
    margin-left: 0;
}

.main-box {
    display: flex;
    flex-wrap: wrap;
    row-gap: 15px;
}
.main-box .left {
	width: calc(70% - 10px);
	margin-right: 10px;
}
.main-box .left  .service-card {
	height: auto;
	margin-bottom: 15px;
}

.main-box .right {
	width: 30%;
}

.dropdown {
    float: left;
    overflow: hidden;
}

.dropdown .dropbtn {
    font-size: 16px;
    border: none;
    outline: none;
    color: white;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #111111;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    float: none;
    color: #fff;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #111111;
    color: var(--accent-yellow);
}

.dropdown:hover .dropdown-content {
    display: block;
}

#featured-services .service-card .box {
	display: flex;
	align-items: center;
	column-gap: 20px;
}
.main-box .right img {
    width: 100%;
	border-radius: 15px;
    transition: all 0.5s ease-in-out;
}
.main-box .right img:hover {
	transform: translateY(-10px);;
}